aboutsummaryrefslogtreecommitdiff
path: root/src/app/(main)/websites/[websiteId]/(reports)/retention/page.tsx
blob: 2fbbc0ac3e28c22fc73bdf92da4e7cb4efb0dc08 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
import type { Metadata } from 'next';
import { RetentionPage } from './RetentionPage';

export default async function ({ params }: { params: Promise<{ websiteId: string }> }) {
  const { websiteId } = await params;

  return <RetentionPage websiteId={websiteId} />;
}

export const metadata: Metadata = {
  title: 'Retention',
};